iT邦幫忙

DAY 20
0

學習技術筆記系列 第 15

Day20[C++]Precision and Recall

  • 分享至 

  • xImage
  •  

ITSA 第三十四屆第五題題目

團隊:Voir-dire

程式碼:

#include <iostream>
#include <string>
using namespace std;
int main()
{
cout.setf(ios::fixed, ios::floatfield);
cout.precision(2);
int n, i = 0;
for(cin >> n; i < n; ++i)
{
int tp = 0, fp = 0, fn = 0;
string s1, s2;
cin >> s1 >> s2;
for(int j = 0; s1[j]; ++j)
{
if(s1[j] == '1' && s1[j] == s2[j]) ++tp;
if(s1[j] == '1' && s1[j] != s2[j]) ++fp;
if(s1[j] == '0' && s1[j] != s2[j]) ++fn;
}
double p1 = (double)tp / (tp + fp);
double p2 = (double)tp / (tp + fn);
if(p2 > 1) cout << "0.00 ";
else cout << p2 << ' ';
if(p1 > 1) cout << "0.00 ";
else cout << p1 << endl;
}
return 0;
}


上一篇
Day19[C++]圈圈叉叉
下一篇
Day21[C++]考試測驗
系列文
學習技術筆記22
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言